If

static int code = 0; 
void funcIf (void)
{
    if (code > 0)
    {
        code = 1;
}
} 

This function has two paths. The first path is through the if statement and is shown by the raised line. The second path is where the if condition is false and is represented by the x-axis.